Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
unist-util-flat-filter
Advanced tools
Create a new Unist tree by filtering with the provided function and getting all of the returned results in a flat list, not including parent nodes
unist utility to create a new tree with all nodes that pass the given test.
npm:
npm install unist-util-flat-filter
import u from 'unist-builder';
import flatFilter from 'unist-util-flat-filter';
const tree = u('root', [
u('leaf', '1'),
u('node', [u('leaf', '2'), u('node', [u('leaf', '3')])]),
u('leaf', '4')
])
const newTree = flatFilter(tree, node => node.type === 'leaf')
console.dir(newTree, {depth: null})
Yields:
{
type: 'root',
children: [
{ type: 'leaf', value: '1' },
{ type: 'leaf', value: '2' },
{ type: 'leaf', value: '3' },
{ type: 'leaf', value: '4' }
]
}
filter(tree[, test])
Create a new tree consisting of copies of all nodes that pass test
.
The tree is walked in inorder, visiting the parent, then the children nodes node itself, etc.
Node?
— New filtered tree.
null
is returned if tree
itself didn’t pass the test, or is cascaded away.
FAQs
Create a new Unist tree by filtering with the provided function and getting all of the returned results in a flat list, not including parent nodes
The npm package unist-util-flat-filter receives a total of 1,218 weekly downloads. As such, unist-util-flat-filter popularity was classified as popular.
We found that unist-util-flat-filter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.